home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / XML Writer 2.12 / XML writer.exe / file0011.bin < prev    next >
Encoding:
Extensible Markup Language  |  2003-04-14  |  2.1 KB  |  68 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--What you can do with this file:
  4.     1. Check that it validates against the XSD Schema, Library.xsd, assigned to it.
  5.        To validate, select 'Validate' from the Tools menu, or press F7.-->
  6.  
  7. <!--XSD Schema declaration.
  8.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" indicates to the
  9.     XML parser that the following attribute, xsi:noNamespaceSchemaLocation,
  10.     comes from the http://www.w3.org/2001/XMLSchema-instance namespace.-->
  11. <library
  12.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  13.     xsi:noNamespaceSchemaLocation="Library.xsd">
  14.  
  15.     <name>Northmead Local Library</name>
  16.     <book status="available">
  17.         <publisher>Wiley International Edition</publisher>
  18.         <title>Circuits, Devices and Systems</title>
  19.         <edition>5th</edition>
  20.         <author>
  21.             <first-name>Ralph J</first-name>
  22.             <last-name>Smith</last-name>
  23.         </author>
  24.         <author>
  25.             <first-name>Richard C</first-name>
  26.             <last-name>Dorf</last-name>
  27.         </author>
  28.         <isbn>0471552216</isbn>
  29.         <callno>005.133/C</callno>
  30.         <online_url>http://library/online_books/005133C.html</online_url>
  31.     </book>
  32.     <book status="on_loan">
  33.         <publisher>Prentice Hall PTR</publisher>
  34.         <title>The C Programming Language</title>
  35.         <edition>2nd</edition>
  36.         <author>
  37.             <first-name>Brian W</first-name>
  38.             <last-name>Kernighan</last-name>
  39.         </author>
  40.         <author>
  41.             <first-name>Dennis M</first-name>
  42.             <last-name>Ritchie</last-name>
  43.         </author>
  44.         <isbn>0131103628</isbn>
  45.         <callno>005.133/C2</callno>
  46.         <online_url>http://library/online_books/005133C2.html</online_url>
  47.     </book>
  48.     <journal series="XML Users Journal">
  49.         <title>XML Users Journal August 1999</title>
  50.         <date>1999-08-01</date>
  51.         <callno>005.133/C</callno>
  52.     </journal>
  53.     <video status="available">
  54.         <title>Lord of the Rings: The Fellowship of the Ring</title>
  55.         <year>2001</year>
  56.         <director>
  57.             <name>Peter Jackson</name>
  58.         </director>
  59.         <genre>fantasy</genre>
  60.         <genre>adventure</genre>
  61.         <callno>643.11/L</callno>
  62.     </video>
  63. </library>
  64.  
  65. <!--This file was created using XMLwriter v2.0 Beta 2.
  66.     Copyright Wattle Software 2002. All rights reserved.
  67.     http://XMLwriter.net/-->
  68.